home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000176_news@columbia.edu _Mon Jan 1 17:42:40 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id RAA29231
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 1 Jan 2001 17:42:40 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA19754
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 1 Jan 2001 17:42:39 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id RAA20199
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 1 Jan 2001 17:34:02 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: Pim Zandbergen <P.Zandbergen@rubens.macroscoop.nl>
  13. Subject: kermit-95 linux terminal type emulation problem
  14. Date: Mon, 01 Jan 2001 23:06:37 +0100
  15. Organization: UUNET-NL (http://www.nl.uu.net)
  16. Message-ID: <0gu15tkoe38u4ghd7937do07s14ecpqife@4ax.com>
  17. To: kermit.misc@columbia.edu
  18.  
  19.  
  20. I have encountered this problem with using kermit-95 1.1.20 and its
  21. linux terminal type emulation.
  22.  
  23. When I use it to telnet to a server running Red Hat Linux 7.0, the
  24. terminal emulator goes berserk whenever I start vi. Vi will not
  25. respond to typing a colon, it will beep. I can only leave vi by typing
  26. ZZ.
  27.  
  28. I have narrowed the problem down to escape sequences that change the
  29. cursor visibility.
  30.  
  31. After changing these lines in the linux entry in /etc/termcap from
  32.  
  33.        :vb=200\E[?5h\E[?5l:ve=\E[?25h\E[?0c:vi=\E[?25l\E[?1c:\
  34.        :vs=\E[?25h\E[?8c:\
  35.  
  36. to
  37.  
  38.         :vb=200\E[?5h\E[?5l:ve=\E[?25h:vi=\E[?25l:\
  39.         :vs=\E[?25h:\
  40.  
  41. the problem disappeared.
  42.  
  43. Looks like a bug in kermit-95 to me, though I did not see it in
  44. ftp://kermit.columbia.edu/kermit/k95/newbugs.txt
  45.  
  46. Pim